Structures
Declaration: Example (Step 3)
Structure type
Structure variable
struct student{
int Age;
float Salary;
};
struct student John, Mary;
John.Age = 20;
Mary.Age = John.Age;
struct {
VARIABLES;
}
StructureVariable
;